home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Gfx / Conv / Iff2EPS / Install < prev    next >
Text File  |  1995-11-24  |  717b  |  34 lines

  1. (if (= @language "deutsch")
  2.     (
  3.         (SET Intro "Wilkommen zum Installer-Script für IFF2EPS")
  4.         (SET Where "Wohin soll das IFF2EPS Paket hinkopiert werden ? Es wir ein Verzeichnis namens IFF2EPS angelegt")
  5.     )
  6. )
  7. (if (= @language "english")
  8.     (
  9.         (SET Intro "Welcome to the installer-script for IFF2EPS")
  10.         (SET Where "Where do wou want to place the IFF2EPS packet ? A drawer called IFF2EPS will be created")
  11.     )
  12. )
  13.  
  14. (MESSAGE Intro)
  15.  
  16. (SET Wuerg
  17.     (ASKDIR
  18.         (PROMPT Where)
  19.         (DEFAULT "sys:")
  20.         (HELP "")
  21.     )
  22. )
  23.  
  24. (SET Mama (TACKON Wuerg "IFF2EPS"))
  25.  
  26. (RUN (CAT "makedir \""Mama"\""))
  27.  
  28. (COPYFILES
  29.     (SOURCE ":Gfx/Conv/Iff2EPS/")
  30.     (DEST   Mama)
  31.     (INFOS)
  32.     (ALL)
  33. )
  34.